runtime.unwinder.frame (field)
36 uses
runtime (current package)
heapdump.go#L376: dumpframe(&u.frame, &child)
mbitmap.go#L1950: if u.frame.sp <= uintptr(p) && uintptr(p) < u.frame.varp {
mbitmap.go#L1956: locals, _, _ := u.frame.getStackMap(false)
mbitmap.go#L1964: off := (uintptr(p) + i - u.frame.varp + size) / goarch.PtrSize
mgcmark.go#L973: scanframeworker(&u.frame, &state, gcw)
panic.go#L1022: if u.frame.sp == limit {
panic.go#L1026: if p.initOpenCodedDefers(u.frame.fn, unsafe.Pointer(u.frame.varp)) {
panic.go#L1033: p.lr = u.frame.lr
panic.go#L1034: p.sp = unsafe.Pointer(u.frame.sp)
panic.go#L1035: p.fp = unsafe.Pointer(u.frame.fp)
panic.go#L1128: for iu, f := newInlineUnwinder(u.frame.fn, u.symPC()); f.valid(); f = iu.next(f) {
panic.go#L1134: if u.frame.fp == uintptr(p.gopanicFP) && nonWrapperFrames > 0 {
stack.go#L977: adjustframe(&u.frame, &adjinfo)
traceback.go#L99: frame stkframe
traceback.go#L217: frame: frame,
traceback.go#L229: return u.frame.pc != 0
traceback.go#L254: frame := &u.frame
traceback.go#L442: frame := &u.frame
traceback.go#L521: u.frame.pc = 0
traceback.go#L564: if u.flags&(unwindPrintErrors|unwindSilentErrors) == 0 && u.frame.sp != gp.stktopsp {
traceback.go#L565: print("runtime: g", gp.goid, ": frame.sp=", hex(u.frame.sp), " top=", hex(gp.stktopsp), "\n")
traceback.go#L582: if u.flags&unwindTrap == 0 && u.frame.pc > u.frame.fn.entry() {
traceback.go#L584: return u.frame.pc - 1
traceback.go#L587: return u.frame.pc
traceback.go#L595: if !cgoTracebackAvailable() || u.frame.fn.funcID != abi.FuncID_cgocallback || u.cgoCtxt < 0 {
traceback.go#L625: f := u.frame.fn
traceback.go#L970: f := u.frame.fn
traceback.go#L996: argp := unsafe.Pointer(u.frame.argp)
traceback.go#L1002: if u.frame.pc > f.entry() {
traceback.go#L1003: print(" +", hex(u.frame.pc-f.entry()))
traceback.go#L1006: print(" fp=", hex(u.frame.fp), " sp=", hex(u.frame.sp), " pc=", hex(u.frame.pc))
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |